home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / doors_2 / tlxtw104.zip / SCRIPTS.ZIP / TLXTWHLP.SLT < prev    next >
Text File  |  1993-03-26  |  529b  |  22 lines

  1. // tlxtwhlp.slt = Alt-F1
  2. // Uses List.com to list a text file that shows the key assignments.
  3. // Tlxtwhlp.txt file should be in the same directory as Telix.exe.
  4.  
  5. main()
  6. {
  7. str help[64] = "list";      // Edit the this line if you don't use List.com
  8.  
  9. str file[64];
  10. strcat (file, _telix_dir);
  11. strcat (file, "tlxtwhlp.txt");
  12. if (filefind(file, 0) < 1)
  13.  {
  14.   strupper(file);
  15.   inschrs("Can't find ", file, 0,  11);  status_wind(file, 15);
  16.   return(-1);
  17.   }
  18.  inschrs(" ", file, 0, 1 );
  19.  run(help, file);
  20.  return;
  21.  }
  22.